EncodeURLComponent Function
Encodes the components of a URL.
Syntax
result = EncodeURLComponent( str )
Parameters | ||
str |
The string to be encoded. |
Notes
A valid URL is a series of components that are separated by component separators. They are the ".", "/", ";", "&", and "?". EncodeURLComponent works with each component part of the URL. It assumes that any component separators in a component represent text and must be encoded. The reverse operation is done by DecodeURLComponent.
Example
Here is an example of how an embedded component separator is encoded.
See Also